home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / DOS / C / TCCLIB.ZIP / HIDECURS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  159 b   |  12 lines

  1. #include <dos.h>
  2.  
  3. void HideCursor( void )
  4. {
  5.     union REGS regs;
  6.  
  7.     regs.h.ah = 2;
  8.     regs.h.bh = 0;
  9.     regs.x.dx = 0x1950;
  10.     int86( 0x10, ®s, ®s );
  11. }
  12.